home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / phit.swf / scripts / __Packages / CSkipLevelButton.as < prev    next >
Encoding:
Text File  |  2007-07-13  |  318 b   |  15 lines

  1. class CSkipLevelButton extends MovieClip
  2. {
  3.    var _iLevel = 0;
  4.    function CSkipLevelButton()
  5.    {
  6.       super();
  7.    }
  8.    function OnClicked()
  9.    {
  10.       FreshDebug.Trace("OnClicked " + this._iLevel);
  11.       _root._iStartLevel = this._iLevel - 1;
  12.       _root._mainMenu.gotoAndPlay("dismiss pick");
  13.    }
  14. }
  15.